home *** CD-ROM | disk | FTP | other *** search
/ C++ für Kids / C++ for kids.iso / Buch / hangy.h < prev    next >
C/C++ Source or Header  |  1999-02-01  |  1KB  |  43 lines

  1. //---------------------------------------------------------------------------
  2. #ifndef hangyH
  3. #define hangyH
  4. //---------------------------------------------------------------------------
  5. #include <vcl\Classes.hpp>
  6. #include <vcl\Controls.hpp>
  7. #include <vcl\StdCtrls.hpp>
  8. #include <vcl\Forms.hpp>
  9. #include <vcl\ExtCtrls.hpp>
  10. #include <vcl\Menus.hpp>
  11. #include <vcl\Dialogs.hpp>
  12. //---------------------------------------------------------------------------
  13. class TForm1 : public TForm
  14. {
  15. __published:    // IDE-verwaltete Komponenten
  16.     TButton *ReadyButton;
  17.     TButton *NewButton;
  18.     TPanel *Panel1;
  19.     TPanel *Panel2;
  20.     TImage *Image1;
  21.     TLabel *Label1;
  22.     TMainMenu *MainMenu1;
  23.     TMenuItem *Datei1;
  24.     TMenuItem *Oeffnen1;
  25.     TMenuItem *Ende1;
  26.     TOpenDialog *OpenDialog1;
  27.     void __fastcall FormCreate(TObject *Sender);
  28.     void __fastcall NewButtonClick(TObject *Sender);
  29.     void __fastcall FormKeyPress(TObject *Sender, char &Key);
  30.     void __fastcall ReadyButtonClick(TObject *Sender);
  31.     void __fastcall FormClose(TObject *Sender, TCloseAction &Action);
  32.     
  33.     void __fastcall Oeffnen1Click(TObject *Sender);
  34.     void __fastcall Ende1Click(TObject *Sender);
  35. private:    // Benutzer-Deklarationen
  36. public:        // Benutzer-Deklarationen
  37.     __fastcall TForm1(TComponent* Owner);
  38. };
  39. //---------------------------------------------------------------------------
  40. extern TForm1 *Form1;
  41. //---------------------------------------------------------------------------
  42. #endif
  43.